testing.benchContext.maxLen (field)

7 uses

	testing (current package)
		benchmark.go#L222: 		if n := len(b.name) + ctx.extLen + 1; n > ctx.maxLen {
		benchmark.go#L223: 			ctx.maxLen = n + 8 // Add additional slack to avoid too many jumps in size.
		benchmark.go#L505: 	maxLen int // The largest recorded benchmark name.
		benchmark.go#L536: 			if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
		benchmark.go#L537: 				ctx.maxLen = l
		benchmark.go#L572: 				fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
		benchmark.go#L599: 				fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)